home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / NMK / Recorders / RMenuVars.h < prev    next >
Text File  |  1995-06-12  |  675b  |  35 lines

  1. /***** RMenuVars.h -- MenuCellCover variable holder object interface
  2.     NeXTstep Measurement Kit
  3.     by Alex Meyer <ameyer@phoenix.Princeton.EDU>
  4.     for computer science senior thesis
  5.     24 April 1992 -- created from RButtonVars.h
  6. *****/
  7.  
  8. #import "TranscriptLinker.h"
  9. #import "structs.h"
  10. #import <objc/Object.h>
  11.  
  12. @interface RMenuVars : Object
  13. {
  14.     id linker;
  15.     NXAtom key;
  16.     double lastHitTime;
  17.     rMenuRec stats;
  18. }
  19.  
  20. - initString:(const char *)str
  21.     tag:(int)tg
  22.     rect:(const NXRect *)rect;
  23. - incHits;
  24. - incCancel;
  25. - timeFrom:(double)time0
  26.     to:(double)time1;
  27. - (unsigned)type;
  28. - (NXAtom)key;
  29. - (NXAtom)desc;
  30. - (unsigned)statsSize;
  31. - (void *)copyOfStats;
  32. - copyInStats:(void *)NewStats;
  33.  
  34. @end
  35.